Class Tab

Tab

Google Docs दस्तावेज़ में मौजूद टैब.

// Get all of the first-level tabs (tabs that are not nested within a parent
// tab) in the document.
// TODO(developer): Replace the ID with your own.
const tabs = DocumentApp.openById('123abc').getTabs();

// Get a specific tab based on the tab ID.
// TODO(developer): Replace the IDs with your own.
const tab = DocumentApp.openById('123abc').getTab('123abc');

तरीके

तरीकारिटर्न टाइपसंक्षिप्त विवरण
asDocumentTab()DocumentTabटैब के कॉन्टेंट को DocumentTab के तौर पर वापस लाता है.
getChildTabs()Tab[]इस टैब में नेस्ट किए गए चाइल्ड टैब को वापस लाता है.
getId()Stringटैब का आईडी दिखाता है.
getIndex()Integerयह फ़ंक्शन, पैरंट टैब में मौजूद टैब का 0 पर आधारित इंडेक्स दिखाता है.
getTitle()Stringटैब का टाइटल दिखाता है.
getType()TabTypeटैब का टाइप दिखाता है.

ज़्यादा जानकारी वाला दस्तावेज़

asDocumentTab()

टैब के कॉन्टेंट को DocumentTab के तौर पर वापस लाता है.

वापसी का टिकट

DocumentTab — टैब को DocumentTab के तौर पर दिखाया गया है.


getChildTabs()

इस टैब में नेस्ट किए गए चाइल्ड टैब को वापस लाता है.

वापसी का टिकट

Tab[] — इस टैब में नेस्ट किए गए चाइल्ड टैब.

अनुमति देना

इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:

  • https://www.googleapis.com/auth/documents.currentonly
  • https://www.googleapis.com/auth/documents

getId()

टैब का आईडी दिखाता है.

वापसी का टिकट

String — टैब का आईडी.

अनुमति देना

इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:

  • https://www.googleapis.com/auth/documents.currentonly
  • https://www.googleapis.com/auth/documents

getIndex()

पेरंट टैब में मौजूद टैब का 0-आधारित इंडेक्स दिखाता है.

वापसी का टिकट

Integer — पैरंट टैग में टैब का इंडेक्स.

अनुमति देना

इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:

  • https://www.googleapis.com/auth/documents.currentonly
  • https://www.googleapis.com/auth/documents

getTitle()

टैब का टाइटल दिखाता है.

वापसी का टिकट

String — टैब का टाइटल.

अनुमति देना

इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:

  • https://www.googleapis.com/auth/documents.currentonly
  • https://www.googleapis.com/auth/documents

getType()

टैब का टाइप दिखाता है.

इस तरीके का इस्तेमाल करके, Tab के कॉन्टेंट टाइप का पता लगाएं. इसके बाद, asDocumentTab() का इस्तेमाल करके, कॉन्टेंट को किसी खास टाइप पर कास्ट करें.

const tab = DocumentApp.getActiveDocument().getActiveTab();
// Use getType() to determine the tab's type before casting.
if (tab.getType() === DocumentApp.TabType.DOCUMENT_TAB) {
  // It's a document tab, write some text to it.
  tab.asDocumentTab().setText('Hello World!');
} else {
  // There are currently no types other than DOCUMENT_TAB.
}

वापसी का टिकट

TabType — टैब का टाइप.

अनुमति देना

इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:

  • https://www.googleapis.com/auth/documents.currentonly
  • https://www.googleapis.com/auth/documents